home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacFormat 1994 October
/
macformat-005.iso
/
Shareware City
/
Developers
/
MacVogl-alpha1PPC
/
check.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
C/C++ Source or Header
|
1994-07-11
|
256 b
|
19 lines
|
[
TEXT/????
]
#include <stdio.h>
extern int hLoaded;
/*
* check_loaded
*
* Checks and prints out a message if the font isn't loaded.
*/
void
check_loaded(who)
char *who;
{
if (!hLoaded) {
fprintf(stderr, "%s: no hershey font loaded.\n", who);
exit(1);
}
}